home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / TESTNUM.CC < prev    next >
C/C++ Source or Header  |  1993-04-04  |  119b  |  9 lines

  1. #include <ctype.h>
  2. test_numeric(char *str)
  3. {
  4.     while(*str) {
  5.         if(!isdigit(*str++)) return(1);
  6.     }
  7.     return(0);
  8. }
  9.